home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / frontpage_xss.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  70 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(11395);
  10.  script_bugtraq_id(1594, 1595);
  11.  script_version ("$Revision: 1.8 $");
  12.  script_cve_id("CAN-2000-0746");
  13.  
  14.  name["english"] = "Microsoft Frontpage XSS";
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. The remote server is vulnerable to Cross-Site-Scripting (XSS)
  19. when the FrontPage CGI /_vti_bin/shtml.dll is fed with improper
  20. arguments.
  21.  
  22. Solution : See http://www.microsoft.com/technet/security/bulletin/ms00-060.mspx
  23. Risk factor : Medium";
  24.  
  25.  
  26.  
  27.  script_description(english:desc["english"]);
  28.  
  29.  summary["english"] = "Checks for the presence of a Frontpage XSS";
  30.  script_summary(english:summary["english"]);
  31.  
  32.  script_category(ACT_GATHER_INFO);
  33.  
  34.  
  35.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison",
  36.         francais:"Ce script est Copyright (C) 2003 Renaud Deraison");
  37.  family["english"] = "CGI abuses";
  38.  family["francais"] = "Abus de CGI";
  39.  script_family(english:family["english"], francais:family["francais"]);
  40.  script_dependencie("find_service.nes", "http_version.nasl", "cross_site_scripting.nasl", "www_fingerprinting_hmap.nasl");
  41.  script_require_ports("Services/www", 80);
  42.  exit(0);
  43. }
  44.  
  45. #
  46. # The script code starts here
  47. #
  48.  
  49. include("http_func.inc");
  50. include("http_keepalive.inc");
  51.  
  52. port = get_http_port(default:80);
  53.  
  54. if(!get_port_state(port))exit(0);
  55. sig = get_kb_item("www/hmap/" + port + "/description");
  56. if ( sig && "IIS" >!< sig ) exit(0);
  57. if(get_kb_item(string("www/", port, "/generic_xss"))) exit(0);
  58.  
  59. req = http_get(item:"/_vti_bin/shtml.exe/<script>alert(document.domain)</script>", port:port);
  60.  
  61. res = http_keepalive_send_recv(port:port, data:req);
  62. if( res == NULL ) exit(0);
  63. if ( ereg(pattern:"^HTTP/.* 404 .*", string:res)) exit(0);
  64.  
  65. res2 = strstr(res, '\r\n\r\n');
  66. if ( ! res2 ) res2 = strstr(res, '\n\n');
  67. if ( ! res2 ) exit(0);
  68.  
  69. if("<script>alert(document.domain)</script>" >< res2)security_warning(port);
  70.